home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / containers / utilityClasses / Layout.as < prev   
Encoding:
Text File  |  2010-05-14  |  751 b   |  39 lines

  1. package mx.containers.utilityClasses
  2. {
  3.    import mx.core.Container;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class Layout
  9.    {
  10.       mx_internal static const VERSION:String = "2.0.1.0";
  11.       
  12.       private var _target:Container;
  13.       
  14.       public function Layout()
  15.       {
  16.          super();
  17.       }
  18.       
  19.       public function set target(param1:Container) : void
  20.       {
  21.          _target = param1;
  22.       }
  23.       
  24.       public function measure() : void
  25.       {
  26.       }
  27.       
  28.       public function updateDisplayList(param1:Number, param2:Number) : void
  29.       {
  30.       }
  31.       
  32.       public function get target() : Container
  33.       {
  34.          return _target;
  35.       }
  36.    }
  37. }
  38.  
  39.